home *** CD-ROM | disk | FTP | other *** search
Text File | 1994-04-19 | 1.3 KB | 60 lines | [TEXT/MPS ] |
- //# Copyright: © 1993-94 by Apple Computer, Inc., all rights reserved.
- #ifndef _FOCUSSET_
- #define _FOCUSSET_
-
- #ifndef _ODOBJECT_
- #include "ODObject.idl"
- #endif
-
- //=====================================================================================
- // Classes defined in this interface
- //=====================================================================================
-
- interface ODFocusSet;
-
- //=====================================================================================
- // Classes used by this interface
- //=====================================================================================
-
- interface ODFocusSetIterator;
-
-
- //=====================================================================================
- // ODFocusSet
- //=====================================================================================
-
- interface ODFocusSet : ODObject
- {
- void InitFocusSet();
-
- void Add(in ODTypeToken focus);
-
- void Remove(in ODTypeToken focus);
-
- ODBoolean Contains(in ODTypeToken focus);
-
- ODFocusSetIterator CreateIterator();
-
-
- #ifdef __SOMIDL__
- implementation
- {
- override:
- somInit,
- somUninit;
-
- releaseorder:
- InitFocusSet,
- Add,
- Remove,
- Contains,
- CreateIterator,
- GetImplementation;
-
-
- };
- #endif
- };
-
- #endif // _FOCUSSET_
-